home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 16
/
Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso
/
Aminet
/
util
/
sys
/
Make060.lha
/
Make060
/
Make060.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-10-30
|
489b
|
30 lines
/*
** $VER: Make060 1.0 (30.10.96)
**
** Sets AFF_68060 in ExecBase, it your accelerator soft didn't...
**
** (C) Copyright 1996 Andreas R. Kleinert
** All Rights Reserved.
*/
#include <exec/types.h>
#include <exec/execbase.h>
#include <proto/exec.h>
#include <68060.h>
#include <stdlib.h>
char ver_text [] = "\0$VER: Make060 V1.0 (30.10.96)";
void main(long argc, char **argv)
{
extern struct ExecBase *SysBase;
SysBase->AttnFlags |= AFF_68060;
exit(0);
}